PowerApps - Get All Channels for the current user
Microsoft Teamsのすべてのチャネルを取得する
Solved: Microsoft Teams - Get All Channels for the current... - Power Platform Community
code:powerapps
Clear(ColAllChannels);
ForAll(
MicrosoftTeams.GetAllTeams().value,
Collect(ColAllChannels, MicrosoftTeams.GetChannelsForGroup(id).value)
)
ForAll関数(PowerApps)
Collect関数(PowerApps)
meganii.icon以下の書き方はダメだった
新しく、任意のプロパティを持ったコレクションを作るにはどうすればよいのか
code:powerapps
ForAll(
MicrosoftTeams.GetAllTeams().value,
Collect(ColAllChannels,
{
teamName: displayName),
channelName: MicrosoftTeams.GetChannelsForGroup(id).value),
}
)
)